/* ==========================================================================
   HOOFD KLEURENPALET EN VARIABELEN (:ROOT)
   ========================================================================== */
:root {
    --primary:       #D4AF37;
    --primary-dim:   rgba(212, 175, 55, 0.25);
    --primary-glow:  rgba(212, 175, 55, 0.10);
    --background:    #192850;
    --bg-dark:       #0F1E3D;
    --bg-darker:     #0A1428;
    --text:          #F0E8D0;
    --text-muted:    rgba(240, 232, 208, 0.68);
    --text-dark:     #3A2A1A;
    --card-bg:       rgba(248, 231, 192, 0.08);
    --card-bg-warm:  rgba(248, 231, 192, 0.88);
    --card-border:   rgba(212, 175, 55, 0.18);
    --radius:        12px;
    --radius-sm:     8px;
    --shadow:        0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg:     0 20px 50px rgba(0, 0, 0, 0.7);
    font-size: 16px;
}

/* Base resets */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: var(--bg-darker);
    color: var(--text);
    line-height: 1.7;
    width: 100%;
    overflow-x: hidden;
}

main { width: 100%; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.accent-gold {
    color: var(--primary);
}

/* Typografie */
h1 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.25;
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
    letter-spacing: 0.04em;
}

h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.03em;
}

p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* =================================
   ZWEVENDE INTERACTIEVE REVIEW KNOP FIX
================================= */
.floating-review-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary);
    color: #0a1428;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border: none; /* Verwijdert standaard button rand */
    cursor: pointer; /* Zorgt voor het vertrouwde handje bij aanwijzen */
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.floating-review-btn:hover {
    transform: scale(1.05);
    background-color: #e5bd3b;
    color: #0a1428;
}

.floating-review-btn .btn-icon {
    font-size: 1.1rem;
}

/* =================================
   HERO SECTION
================================= */
.hero-section {
    padding: 8rem 0 6rem 0;
    text-align: center;
    background: radial-gradient(circle at top, #1d2d5a 0%, #0a1428 80%);
}

.hero-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-text {
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* =================================
   KRACHT VAN BINNENUIT (GRID)
================================= */
.grid-section {
    padding: 6rem 0;
    background-color: var(--bg-darker);
    text-align: center;
}

.section-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    display: block;
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--text);
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.features-grid .feature-card:nth-child(4) {
    grid-column: 1 / 2;
}

.feature-card {
    background: rgba(248, 231, 192, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.07);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 4px;
}

.card-icon {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.feature-card h3 {
    color: var(--text);
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* =================================
   WING CHUN INFO & RESPONSIVE CAROUSEL
================================= */
.info-split-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.split-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-text { flex: 1.2; }

.split-media { 
    flex: 0.8; 
    width: 100%;
    display: flex;
    justify-content: center;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4 / 5;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; 
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel img.active {
    opacity: 1;
}

.vinkje-lijst {
    list-style: none;
    margin: 2.5rem 0;
    padding: 0;
}

.vinkje-lijst li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.vinkje-dash {
    color: var(--primary);
    font-weight: bold;
}

.btn-margin-top { margin-top: 1.5rem; }

/* =================================
   REVIEWS SECTION
================================= */
.reviews-section {
    padding: 6rem 0;
    background-color: var(--bg-darker);
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    /* FIX: Dit dwingt de achtergrond weer naar de mooie, subtiele donkere tint */
    background: rgba(248, 231, 192, 0.03) !important; 
    
    /* FIX: Dit zorgt voor een subtiel goudkleurig randje rondom de kaart */
    border: 1px solid rgba(212, 175, 55, 0.15); 
    
    padding: 3rem 2rem;
    text-align: left;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}

/* Extra controle voor de tekstkleuren binnen de kaart */
.review-card .review-text {
    color: var(--text) !important; /* Maakt de tekst weer mooi leesbaar licht-goud/beige */
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.review-card .review-author {
    color: var(--primary) !important; /* Zorgt dat de naam van de ouder strak goud blijft */
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
}

/* ==========================================================================
   FOOTER MET VERTICALE SCHEIDINGSLIJNTJES
   ========================================================================== */
footer {
    background-color: #0A1428;
    padding: 5rem 0 3rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: flex-start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    width: 100%;
}

.footer-col:nth-child(2),
.footer-col:nth-child(3) {
    border-left: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-col span {
    font-size: 0.88rem;
    color: rgba(240, 232, 208, 0.7);
    line-height: 1.6;
    display: block;
}

.footer-col .footer-sub {
    font-size: 0.78rem;
    color: var(--primary);
    opacity: 0.8;
    margin-top: 0.4rem;
}

.footer-partner-logo {
    height: 65px;
    width: auto;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
}

.footer-partner-logo:hover {
    transform: translateY(-3px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
}

.social-icons img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* =================================
   BUTTON STYLING
================================= */
.btn {
    display: inline-block;
    background: var(--primary);
    color: #0a1428;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn:hover {
    background: #e5bd3b;
    border-color: #e5bd3b;
    color: #0a1428;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(240, 232, 208, 0.3);
}

/* =================================
   RESPONSIVE DESIGN (VOOR MOBIEL)
================================= */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    
    .split-container { 
        flex-direction: column; 
        gap: 3rem; 
    }
    
    .carousel {
        max-width: 100%;
        aspect-ratio: 4 / 3;
    }

    .features-grid, .reviews-grid, .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 2.5rem; 
    }
    
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        border-left: none;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        padding-top: 2rem;
    }

    .features-grid .feature-card:nth-child(4) { grid-column: auto; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; text-align: center; }

    .floating-review-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    /* =================================
   HEADER LOGO
================================= */
header img,
.logo-img {
    max-height: 64px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    border-radius: 8px;
}

}